home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / SoundAndMusic / cmix / Minc / graf.main.c < prev    next >
C/C++ Source or Header  |  1991-03-16  |  353b  |  32 lines

  1.  
  2.  
  3. #include "defs.h"
  4. /* points to tree to be executed once yacc gets done */
  5. Tree program;
  6.  
  7. main()
  8. {
  9.  
  10.     init();
  11.     yyparse();
  12.     exct(program);
  13.  
  14. }
  15.     
  16. init (){};
  17. parse_dispatch(str,args,n)
  18. char *str;
  19. int n;
  20. double args[];
  21.  
  22. {
  23.     int i1;
  24.     printf ("%s:  ",str);
  25.     for (i1=0;i1<n;i1++) {
  26.         printf ("%g  ",args[i1]);
  27.     
  28.     }
  29.     printf(" <n_args=%d>\n\n",n);
  30.     return -999;
  31. }
  32.